-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Add microsoft-skill-creator skill #692
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Adds a new microsoft-skill-creator Agent Skill to help users generate other Microsoft-technology-focused skills, including a set of reusable skill templates and an entry in the skills registry docs.
Changes:
- Added
microsoft-skill-creatorskill instructions and workflow inSKILL.md - Added reusable Microsoft skill templates in
references/skill-templates.md - Registered the new skill in
docs/README.skills.md
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| skills/microsoft-skill-creator/SKILL.md | Defines the meta-skill’s purpose and end-to-end process for investigating a Microsoft technology and generating a new skill. |
| skills/microsoft-skill-creator/references/skill-templates.md | Provides copy/paste templates for different Microsoft technology categories (SDK, Azure service, framework, API). |
| docs/README.skills.md | Adds the new skill to the published skills index and lists its bundled reference asset. |
| description: Create agent skills for Microsoft technologies using Learn MCP tools. Use when users want to create a skill that teaches agents about any Microsoft technology, library, framework, or service (Azure, .NET, M365, VS Code, Bicep, etc.). Investigates topics deeply, then generates a hybrid skill storing essential knowledge locally while enabling dynamic deeper investigation. | ||
| context: fork | ||
| compatibility: Requires Microsoft Learn MCP Server (https://learn.microsoft.com/api/mcp) |
Copilot
AI
Feb 10, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
context: fork isn’t a documented skill frontmatter field in this repo’s skill template/validator guidance, and it doesn’t appear to be consumed by the build/validation scripts. Consider removing it or renaming it to a supported field (or documenting/implementing its purpose) to avoid confusing future contributors.
| ```{language} | ||
| {code} | ||
| ``` | ||
|
|
||
| ### {Pattern 2: e.g., "Error Handling"} | ||
| ```{language} | ||
| {code} | ||
| ``` |
Copilot
AI
Feb 10, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The outer fenced block starts with markdown but contains inner {language} fences (e.g., in the Common Patterns section). In Markdown, the inner fences will terminate the outer block, so the template won’t render as intended. Use a longer fence for the outer block (e.g., ````markdown) or switch the inner fences to tildes, and apply the same fix across all templates in this file.
| ```{language} | |
| {code} | |
| ``` | |
| ### {Pattern 2: e.g., "Error Handling"} | |
| ```{language} | |
| {code} | |
| ``` | |
| ~~~{language} | |
| {code} | |
| ~~~ | |
| ### {Pattern 2: e.g., "Error Handling"} | |
| ~~~{language} | |
| {code} | |
| ~~~ |
| - **Do**: {recommendation} | ||
| - **Avoid**: {anti-pattern} | ||
|
|
||
| See [best-practices.md](references/best-practices.md) for detailed guidance. |
Copilot
AI
Feb 10, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This template links to references/best-practices.md, but that file isn’t provided by the template itself. Consider making this a placeholder (e.g., "See {optional best-practices reference file}") or adding a note that the generated skill should include that reference file if the link is kept, to avoid producing broken links by default.
| See [best-practices.md](references/best-practices.md) for detailed guidance. | |
| See {optional best-practices reference file (for example, `references/best-practices.md`)} for detailed guidance. |
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.Description
This PR adds the
microsoft-skill-creatorskill, that's a meta-skill that helps people create skills that teach AI agents about a certain Microsoft technology, product or service.Type of Contribution
By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.